home *** CD-ROM | disk | FTP | other *** search
- /*
- testdm.c
- Display Manager のテスト
- */
-
- #include <stdio.h>
- #include <process.h>
- #include <ryosuke.h>
- #include <usrlib.h>
- #include "dispman.h"
- #include "imageman.h"
-
- main()
- {
- DMnew(1);
- EIMnew(0,512,480);
- DMmenu1_addbox(60,60,200,200);
- EIMline(3,3,300,400,32767,DrawNORMAL);
- getch();
- DMimage_setzoomrate(4);
- getch();
- DMimage_setzoomrate(1);
- getch();
- DMdelete();
- }
-